home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / source / lib / powerd_lib.lha / PowerD_PPC / Max.ass < prev    next >
Text File  |  2001-10-03  |  145b  |  14 lines

  1.  
  2. # Max(r3:LONG,r4:LONG)(r3:LONG)
  3.  
  4.     .text
  5.     .global    _Max
  6.  
  7. _Max:    cmpw    r4,r3
  8.     ble    done
  9.     mr    r3,r4
  10. done:    blr
  11.  
  12.     .type    _Max,@function
  13.     .size    _Max,$-_Max
  14.